home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / abyss_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  56 lines

  1. #
  2. # (C) Tenable Network Security
  3.  
  4.  
  5. if(description)
  6. {
  7.  script_id(11784);
  8.  script_bugtraq_id(8062, 8064);
  9.  
  10.  script_version ("$Revision: 1.3 $");
  11.  name["english"] = "Abyss httpd overflow";
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote Abyss Web server is vulnerable to a buffer overflow
  16. which may be exploited by an attacker to execute arbitrary code on
  17. this host.
  18.  
  19. Solution : Upgrade to Abyss 1.1.6 or newer
  20. Risk factor : High";
  21.  
  22.  script_description(english:desc["english"]);
  23.  
  24.  summary["english"] = "Tests the version of the remote abyss server";
  25.  script_summary(english:summary["english"]);
  26.  
  27.  script_category(ACT_GATHER_INFO);
  28.  
  29.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security");
  30.  family["english"] = "Gain root remotely";
  31.  script_family(english:family["english"]);
  32.  script_dependencies("find_service.nes", "no404.nasl", "http_version.nasl");
  33.  script_require_ports("Services/www", 80);
  34.  exit(0);
  35. }
  36.  
  37. ########
  38.  
  39.  
  40. include("http_func.inc");
  41.  
  42. port = get_http_port(default:80);
  43.  
  44. if(! get_port_state(port)) exit(0);
  45.  
  46. #
  47. # I could not really reproduce the issue with 1.1.5, 
  48. # so I'll stick to a banner check instead
  49. #
  50. banner = get_http_banner(port:port);
  51. if(!banner)exit(0);
  52. if(egrep(pattern:"^Server: Abyss/(0\..*|1\.(0\..*|1\.[0-5])) ", string:banner))
  53.        security_hole(port);
  54. exit(0);       
  55.